home *** CD-ROM | disk | FTP | other *** search
/ The Amiga Classic Collection / The Amiga Classic Collection - Disc 1.iso / Business / BU11-AddressMgr.DMS / BU11-AddressMgr.adf / programming_tips_code / smakefile < prev    next >
Encoding:
Makefile  |  1994-07-08  |  748 b   |  24 lines

  1. # ==================================================================
  2.  
  3. # AUI_TIMER_TEST smake file
  4.  
  5. # ------------------------------------------------------------------
  6.  
  7. TimerTest:      allocator.o amiga.o
  8.                 sc:c/slink FROM LIB:c.o "allocator.o" "amiga.o" "stack_adt.o"\
  9.                 TO TimerTest LIB LIB:sc.lib+LIB:amiga.lib
  10.  
  11. allocator.o:    allocator.c display_position.h general.h prototypes.h
  12.                 sc:c/sc allocator.c
  13.             
  14. amiga.o:        amiga.c amiga.h display_position.h general.h prototypes.h
  15.  
  16.                 sc:c/sc amiga.c
  17.  
  18. timertest.o:    timertest.c display_position.h general.h prototypes.h
  19.  
  20.                 sc:c/sc timertest.c
  21.  
  22. # ==================================================================
  23.  
  24.